home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Dr. Windows 3
/
dr win3.zip
/
dr win3
/
DEMONSTR
/
WITHCLAS.ZIP
/
WCLASS.EXE
/
UNINSTL.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-04-30
|
2KB
|
58 lines
echo off
rem ╔══════════════════════════════════════════════════════════╗
rem ║ UNINSTL.BAT batch file to UnInstall WITH CLASS diskette. ║
rem ╚══════════════════════════════════════════════════════════╝
rem
rem First Check to make sure that 'TO:' parm was I/P.
rem
if %1. == . goto ERR1
:INSTALL1
rem Setup the Uninstallation subdirectory (may not be necessary).
rem Now UnInstall all the programs and files.
del %1\WCLASS\*.exe
del %1\WCLASS\*.wri
del %1\WCLASS\*.hlp
del %1\WCLASS\*.txt
attrib -h -r %1\WCLASS\*.*
copy %1\wclass\???
echo
goto AOK
:ERR1
echo off
echo ╔═════════════════════════════════════════════════════════════════╗
echo ║ Product UnInstall Instructions ║
echo ╠═════════════════════════════════════════════════════════════════╣
echo ║ ║
echo ║ 1) Insert the WITH CLASS disk into a floppy drive, and logon to║
echo ║ that drive. ║
echo ║ ║
echo ║ 2) Type "UNINSTL (drive letter): ║
echo ║ ║
echo ║ For example, typing "UNINSTL C: will uninstall the ║
echo ║ System from the subdirectory named ERD on drive-C. ║
echo ╚═════════════════════════════════════════════════════════════════╝
goto END
:AOK
echo ╔══════════════════════════════════════════════════════╗
echo ║ WITH CLASS UnInstallation Completed Successfully ║
echo ║ ║
echo ║ Now you need to take WITH CLASS out of windows. ║
echo ║ Launch the Windows environment. ║
echo ║ UnInstall WITH CLASS from Windows using the Delete ║
echo ║ Command in the Program Manager. ║
echo ╚══════════════════════════════════════════════════════╝
:END